home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / gate / Gate_ByNetAddr.c < prev    next >
C/C++ Source or Header  |  1992-06-05  |  2KB  |  67 lines

  1. /* 
  2.  * Gate_ByNetAddr.c --
  3.  *
  4.  *    Source code for the Gate_ByNetAddr library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/gate/RCS/Gate_ByNetAddr.c,v 1.1 92/06/04 22:03:20 jhh Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <gate.h>
  22. #include <gateInt.h>
  23.  
  24.  
  25. /*
  26.  *-----------------------------------------------------------------------
  27.  *
  28.  * Gate_ByNetAddr --
  29.  *
  30.  *    Return information about the gateway with the given local network
  31.  *    address.
  32.  *
  33.  * Results:
  34.  *    A Gate_Entry structure describing the gateway.  If no such gateway
  35.  *    exists, NULL is returned.  The Gate_Entry is statically
  36.  *    allocated, and may be modified on the next call to any Gate_
  37.  *    procedure.
  38.  *
  39.  * Side Effects:
  40.  *    The gateway database is opened if it wasn't already.
  41.  *
  42.  *-----------------------------------------------------------------------
  43.  */
  44.  
  45. Gate_Entry *
  46. Gate_ByNetAddr(addrPtr)
  47.     Net_Address     *addrPtr;        /* Pointer to the address in the
  48.                      * format for the network */
  49. {
  50.     register Gate_Entry    *entry;
  51.     register int        i;
  52.     register unsigned char *address = (unsigned char *) addrPtr;
  53.  
  54.     if (Gate_Start() == 0) {
  55.     while (1) {
  56.         entry = Gate_Next();
  57.         if (entry == (Gate_Entry *) NULL) {
  58.         break;
  59.         }
  60.         if (!Net_AddrCmp(&entry->netAddr, addrPtr)) {
  61.         return entry;
  62.         }
  63.     }
  64.     }
  65.     return (Gate_Entry *) NULL;
  66. }
  67.